@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com');

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, Arial, Helvetica, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0 100px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 3px;
            background-color: #007CE7;
        }
        
        h1, h2, h3, h4 {
            margin-bottom: 20px;
            color: #05051F;
        }
        
        p {
            margin-bottom: 15px;
            /* font-size: 20px; */
        }

        .btn {
            padding: 0.8rem 1.8rem;
            background: rgba(5, 5, 31);
            border: 1px solid rgba(5, 5, 31, 0.5);
            color: #FAFAFA;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 400;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            text-decoration: none;
        }

        .btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            color: #05051F;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Header Styles */
        header {
            background: transparent;
            /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            transition: background-color 0.3s ease;
        }
        header.scrolled {
            background: rgb(5, 5, 31, 0.10);
            backdrop-filter: blur(15px);
        }
        .header-container {
            max-width: 1200x;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo_container{
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
        }
        .logo img{
            height: 40px;
            width: auto;
            aspect-ratio: 31/25;
            filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.10));
        }

        nav {
            display: flex;
            justify-content: center;
            flex: 2;
        }

        nav ul {
            display: flex;
            list-style: none;
            flex: 1 0 0;
            align-items: center;
        }
        
        nav ul li {
            margin: 0 50px 0 20px;
        }
        
        nav ul li a {
            font-size: 16px;
            text-decoration: none;
            color: #FAFAFA;
            transition: color 0.3s ease;
            line-height: normal;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        nav ul li a:hover {
            text-decoration: underline;
            font-weight: 500;
        }
        
        .mobile-menu {
            float: right;
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: #cbd5e0;
        }

        /* Hero Section*/
        .hero {
            background: linear-gradient(0deg, #05051F 0%, rgba(5, 5, 31, 0.40) 65.67%, rgba(255, 255, 255, 0.20) 100%), url('https://images.unsplash.com/photo-1576731753569-3e93a228048c?q=80&w=387&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') lightgray -0.092px -567.375px / 100% 179.964% no-repeat;
            background-size: 100% 160%;
            background-position:bottom;
            position: relative;
            width: 100%;
            height: 100vh;
            color: #FAFAFA;
            text-align: center;
        }
        .hero .container{
            position: relative;
            top: 30%;
        }
        
        .hero h1 {
            font-size: 80px;
            margin-bottom: 8px;
            color: #FAFAFA;
            display: inline-block;
            /* transform: scaleY(1.1); */
            line-height: auto;
            font-family:  Arial, Helvetica, sans-serif;
            font-weight: 500;
        }
        
        .hero p {
            /* font-size: 20px; */
            max-width: 700px;
            margin: 0px auto 30px;
            
        }

        .company-vision-section span{
            color: #05051F;
            font-style: italic;
        }
        
        /* Brands Section first*/
        .brands-section {
        padding: 100px 0;
        background: #f0f4f8;
        }
        
        .section-title-brands h3{
        text-align: center;
        color: #05051F;
        margin-bottom: 2rem;
        font-size: 24px;
        }

        .brands-carousel {
        position: relative;
        overflow: hidden;
        margin: 0 auto;
        /* max-width: 1000px; */
        /* border: 1px solid red; */
        }

        .brands-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap: 25px;/
        }

        .brand-item {
        flex: 0 0 auto;
        width: fit-content;
        align-items: center;
        display: flex;
        padding: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;    
        }

        .brand-item:hover {
        transform: translateY(-5px);
        filter: drop-shadow(1px 1px 1px rgba(5, 5, 31, 0.50)) 
        }

        .brand-item img {
        max-width: 100%;
        max-height: 150px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 10;
        transition: all 0.3s ease;
        }

        .brand-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
        }

        /* Responsive Brands */
        @media (max-width: 768px) {

        .brands-section {
            padding: 40px 0;
        }
        
        .section-title {
            font-size: 20px;
        }
        
        .brand-item {
            width: 150px;
            height: 80px;
        }
        
        .brands-track {
            gap: 20px;
        }
        }

        @media (max-width: 480px) {
        
        .brand-item {
            width: 120px;
            height: 70px;
        }
        
        .carousel-btn {
            width: 40px;
            height: 40px;
        }
        }

        /* About Section */
        .about-content {
            display: block;
            align-items: top;
            gap: 50px;
        }
        .about-content h3{
            font-size: 24px;
            font-weight: 600;
        }
        .about-text {
            margin: 0px auto 30px;  
            text-align: center;
        }

        .about-image {
            display: flex;
            position: relative;
            width: fit-content;
            overflow: hidden;
            margin: 0px auto 30px; 
            gap: 10px;
            padding: 24px;
        }
        .about img {
            width: 600px;
            height: 350px;
            object-fit: cover;
            border-radius:  4px;
            box-shadow: 0 10px 10px rgba(0,0,0,0.3);
        }
        .about .img-2{
            margin: 80px 0 0 -100px;
        }
        .about-text-last {
            display: flex;
            max-width: 100%;
            gap: 60px;
        }
        .about-quote {
            width: 20rem;
        }

        .about-btn {
            margin-top: 24px;
        }

        /*Responsive About*/
        @media (max-width: 768px) {
        .about-image {
            width: 100%;
        }
        .about-text-last {
            display: block;
        }
        .about-quote {
            display: block;
            width: 100;
        }
        }

        /* Business Units Section */
        .business-units {
            background-color: #cbd5e0;
        }

        .carousel {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
        }
        
        .carousel-inner {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .carousel-item {
            justify-content: center;
            min-width: 100%;
            text-align: center;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            z-index: 1;
            filter: brightness(0.95);
            background-color: transparent;
            display: flex;
        }
        
        .carousel-item img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            border-radius: 4px;
            z-index: -1;
            transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 10px rgba(0,0,0,0.3);
        }
        
        .carousel-item-overlay {
            border-radius: 0 0 4px 4px;
            position: absolute;
            bottom: 0;
            color: #7F7F7F;
            background: linear-gradient(to top, rgba(0, 0, 0, 10), transparent);
            padding: 2rem 2rem 1rem;
            text-align: left;
            width: 100%;
            border-bottom: 5px solid #007CE7;
        }
        
        .carousel-item-overlay h3 {
            font-size: 24px;
            margin: 0 0 10px;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 10);
            color: #FAFAFA;
        }
        
        .carousel-item-overlay p {
            font-size: 18px;
            color: #FAFAFA;
        }

        .carousel-item-overlay a {
            color: #007CE7;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .carousel-control {
            background-color: rgb(5, 5, 31);
            color: #FAFAFA;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            margin: 0 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 1px solid #05051F;
        }
        
        .carousel-control:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #05051F;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Products Section */
        .product {
            background: #f0f4f8;
        }
        /* Gallery Container */
        .gallery {
            display: flex;
            flex-wrap: wrap;
            padding: 0 4px;
        }
        .gallery-column {
            flex: 25%;
            max-width: 25%;
            padding: 0 4px;
        }

        /* Gallery Item Styles */
        .gallery-item {
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.05);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            z-index: 1;
            filter: brightness(0.95);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            padding: 0;
            margin: 0;
        }

        /* Image Overlay */
        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 2rem 1.5rem 1.5rem;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .image-overlay {
            transform: translateY(0);
        }

        .image-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: transparent;
        }

        .image-category {
            font-size: 0.9rem;
            color: #FAFAFA;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .gallery-column {
                -ms-flex: 50%;
                flex: 50%;
                max-width: 50%;
            }
            
            .gallery .column-3, .column-4 {
                display: none;
            }

            .gallery-item img  {
                object-fit: cover;
            }
            
        }

        @media screen and (max-width: 750px) {
            .gallery-column {
                -ms-flex: 100%;
                flex: 100%;
                max-width: 100%;
            }
            
            .gallery .column-2, .column-3, .column-4 {
                display: none;
            }
            
            .item-1, .item-2, .item-3, .item-4, .item-5, .item-6 {
                width: 100%;
                height: 300px;
                transform: translateX(-50%) !important;
            }
            
            .gallery-item {
                position: relative;
                display: block;
                margin: 0 auto 10px;
                transform: none !important;
            }

            .gallery-item img  {
                object-fit: cover;
            }
            
            .image-overlay {
                transform: translateY(0);
            }
        }

        /* Controls */
        .controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .control-btn {
            padding: 0.8rem 1.8rem;
            background: rgb(5, 5, 31, 0.10);
            border: 1px solid rgba(104, 104, 104, 0.5);
            color: #05051f;
            border-radius: 4px;
            cursor: pointer;
            /* font-weight: 600; */
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            font-size: 16px;
        }

        .control-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .control-btn.active {
            background: #05051f;;
            color: #FAFAFA;
        }
        
        .highlight {
            color: rgb(5, 5, 31);
            font-weight: 600;
        }

        
        /* Services Section */        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            padding: 30px;
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            font-size: 40px;
            color: #05051F;
            margin-bottom: 20px;
        }
        
        /* Footer */
        footer {
            background-color: #05051f;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: #FAFAFA;
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .footer-column p, .footer-column a {
            color: #cbd5e0;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 16px;
        }
        
        .footer-column a:hover {
            color: #FAFAFA ;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: #007CE7;
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #cbd5e0;
            font-size: 14px;
        }
        
        /* Responsive Styles */
        .navbar .inside-btn {
                display: none;
            }
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }

            .about-image {
                flex-direction: column;
            }

            .about-image .img-2{
                margin: 0;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 750px) {
            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(5, 5, 31, .9);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu {
                display: block;
                color: #cbd5e0;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            section {
                padding: 60px 0;
            }
            .navbar .btn {
                display: none;
            }
            .navbar .inside-btn {
                display:flex;
                background-color: transparent;
                border: none;
            }
            .navbar .inside-btn:hover {
                color: #FAFAFA;
                transform: none;
                background-color: transparent;
            }
        }

        /* =============================================================== */
        /* About Page */
        .hero-about{
            background: linear-gradient(0deg, #05051F 0%, rgba(5, 5, 31, 0.40) 65.67%, rgba(255, 255, 255, 0.20) 100%), url('https://plus.unsplash.com/premium_photo-1680404114169-e254afa55a16?q=80&w=1528&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') lightgray -0.092px -567.375px / 100% 179.964% no-repeat;
            background-size: 100% 160%;
            background-position:bottom;
        }
        .breadcrumb{
            list-style: none;
            color: #FAFAFA;
        }
        .breadcrumb li {
            display: inline;
        }
        .breadcrumb a {
            color: #FAFAFA;
            text-decoration: none;
        }
        .breadcrumb li+li::before {
            padding: 8px;
            color: #FAFAFA;
            content: "/\00a0";
        }

        .about-section {
            text-align: left;
        }
        .about-parent p {
            font-size: 16px;
        }
        .about-parent h3 {
            color: #007CE7;
            font-size: 24px;
        }
        .story {
            padding: 100px 0;
            background: #f0f4f8;
        }
        .story-content {
            display: block;
        }

        .lyrstory {
            width: 60%;
        }

        .story-image {
            width: fit-content;
            overflow: hidden;
            padding: 24px;
        }
        .story img {
            width: 350px;
            height: 300px;
            object-fit: cover;
            border-radius:  4px;
            box-shadow: 0 10px 10px rgba(0,0,0,0.3);
        }
        .story-content .beginning, .today {
            display: inline-flex;
        }
        .story-content .chairman-quote{
            font-weight: 500;
            justify-items: center;
            text-align: center;
        }
        .story-content .chairman-quote span{
            text-transform: uppercase;
            color: #007CE7;
            font-style: italic;
        }

        /* company creed */
        .creed-content span {
            color: #333;
            font-weight: 800;
            font-size: 20px;
            margin-right: 16px;
        }
        .function {
            background-color: #f0f4f8;
        }
        /* company details */
        .company-details {
            background-color: #cbd5e0;
        }

        .company-content ul{
            display: flex;
            gap: 20px;
        }

        .company-content li {
            list-style: none;
            width: 100%;
            height: 100px;
        }

        .company-content a {
            justify-items: center;
            align-items: center; 
            display: flex;
            text-decoration: none;
            color: #333;
        }

        .company-content li div{
            width: 100px;
            font-size: 3rem;
            color: #007CE7;
            border-radius: 50px;
            border: 1px solid #007CE7;
            padding: 10px 18px;
            margin-right: 10px;
        }
        .hero-about-child{
            background-color: #333;
            margin: 75px auto 0px;
            padding: 20px 20px;
        }
        .table-container {
            width: 100%;
            justify-content: center;
            align-items: center; 
            display: flex;
        }
        .table-container table {
            border-collapse: collapse;
            width: 80%;
        }
        .table-container table td {
            padding: 16px 24px;
            border-bottom: 1px solid #cbd5e0;
        }
        .table-container table tr {
            padding: 16px;
        }
        .table-container table td:nth-child(1) {
            width: 250px;
            background-color: #f0f4f8;
        }
        @media (max-width: 750px) {
            .story-content .beginning, .story-content .today{
                display: block;
            }
            .lyrstory {
            width: 100%;
            }
            .story-image {
                justify-content: center;
            }
        }
        

        /* ========================================================== */
        /* Business Unit Page */
        .hero-business-unit{
            background: linear-gradient(0deg, #05051f 0%, rgba(5, 5, 31, 0.50) 65.67%, rgba(5, 5, 31, 0.40) 100%), url('https://images.unsplash.com/photo-1549757521-4160565ff3de?q=80&w=774&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') rgb(5, 5, 31) -0.092px -567.375px / 100% 179.964% no-repeat;
            object-fit:cover;
            background-position: bottom;
        }
        .hero-business-unit .hero-subtitle {
            max-width: 60%;
        }
        .hero-business-unit .container {
            top: 0;
            /* width: 100%;
            max-width:100%; */
        }
        
        .business-unit-content p {
            font-size: 16px;
            color: #FAFAFA;
        }
        .business-unit-content{
            /* border-radius: 4px; */
            padding: 20px 0;
            background-color: rgba(5, 5, 31, 0.320);
            /* align-self: baseline; */
        }
        .business-unit-content ul {
            display: flex;
            justify-content: center;
            gap: 100px;
            /* margin-bottom: 50px; */
        }
        .business-unit-content li {
            list-style: none;
            width: 200px;
            /* margin: 0 50px 0 0; */
            padding: 0 20px 0;
            text-align: center;
            color: #FAFAFA;
            display: grid;
        }
        .business-unit-content span {
            font-size: 26px;
        }

        .b-u {
            display: flex;
            border-bottom: 1px solid #7F7F7F;
            padding: 50px 0 ;
            gap: 20px;
        }
        .b-u-contents {
            flex: 3;
        }
        .b-u-contents ul{
            margin: 0 20px 0;
        }
        .b-u-img {
            flex: 3;
            border-radius: 4px;
            height: 400px;
            display: flex;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
            justify-content: center;
            gap: 10px;
        }
        .b-u-image {
            object-fit: cover;
            width: 100%;
        }
        .b-u-img::before {
            /* background: linear-gradient(0deg, #05051F 0%, rgba(5, 5, 31, 0.10) 45.67%, rgba(5, 5, 31, 0.20) 100%), url(<path-to-image>) lightgray -0.092px -567.375px / 100% 179.964% no-repeat; */
            content: ""; 
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1; 
            /* background-image: linear-gradient(
                to top,
                rgba(5, 5, 31, 0.8) 0%, 
                rgba(5, 5, 31, 0.1) 100% 
            ); */
        }
        .collage {
            display: flex;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
            height: fit-content;
            justify-content: center;
            gap: 10px;
            padding: 10px;
        }
        .collage-img {
            width: 20%;
            object-fit: cover;
        }
        .collage::before {
            /* background: linear-gradient(0deg, #05051F 0%, rgba(5, 5, 31, 0.10) 45.67%, rgba(5, 5, 31, 0.20) 100%), url(<path-to-image>) lightgray -0.092px -567.375px / 100% 179.964% no-repeat; */
            content: ""; 
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1; 
            /* background-image: linear-gradient(
                to top,
                rgba(5, 5, 31, 0.5) 0%, 
                rgba(5, 5, 31, 0.1) 100%
            ); */
        }
        
        @media (max-width: 750px) {
            .b-u {
                display: block;
            }
            .b-u-contents {
                margin: 0 0 20px 0;
            }
            
            .business-unit-content span {
                font-size: 16px;
            }
        }


        /* Contact Us page */  
        .contact-us {
            background: linear-gradient(0deg, #05051F 0%, rgba(5, 5, 31, 0.40) 65.67%, rgba(255, 255, 255, 0.20) 100%), url('https://plus.unsplash.com/premium_photo-1664910191363-d552d678aade?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') lightgray -0.092px -567.375px / 100% 179.964% no-repeat;
            background-size: 100% 160%;
            background-position:bottom;
            position: relative;
            width: 100%;
            color: #FAFAFA;
            text-align: center;
            padding-top: 100px;
        }
        .contact-us .container {
            justify-items: center;
        }
        .contact-us h1 { 
            font-size: 24px;
            margin-bottom: 10px;
            color: #FAFAFA;
            font-family:  Arial, Helvetica, sans-serif;
            font-weight: 800;
        }
        
        .contact-us p {
            font-size: 16px;
            max-width: 500px;
            margin: 0px auto 30px;
        }
        .contact-details {
            width: 80%;
            padding: 100px;
            background-color: rgb(0, 124, 231, .7);
            border-radius: 4px;
        }
        .contact-us form input, .contact-us textarea {
            width: 100%;
            padding: 8px 12px;
            border: none;
            border-radius: 4px;
            margin: 5px 0;
            opacity: 0.85;
            display: inline-block;
            font-size: 14px;
            line-height: 20px;
            text-decoration: none;
            background: rgb(5, 5, 31, 0.2);
            color: #FAFAFA;
            border: 1px solid rgb(5, 5, 31, 0.30);
        }
        .contact-us input:hover,
        .contact-us textarea:hover {
            background-color: rgb(5, 5, 31, 0.3);
        }
        .contact-us input[type=submit] {
        background-color: #7F7F7F;
        color: white;
        cursor: pointer;
        }
        .con-error, .app-error, .sub-error {
            color: red; font-size: 0.9rem; margin-top: 0.3rem; 
        }
        input[type=submit]:hover {
            background-color: #333;
        }
        input:hover,
        input:focus, 
        input:active,
        textarea:hover,
        textarea:focus, 
        textarea:active {
            background-color: transparent; 
            outline: none; 
        }
        textarea:-webkit-autofill:focus,
        textarea:-webkit-autofill:active, 
        input:-webkit-autofill,
        input:-webkit-autofill:focus, 
        input:-webkit-autofill:active {
            -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important; 
            box-shadow: 0 0 0 1000px rgb(5, 5, 31, 0.2) inset !important;
            -webkit-text-fill-color: #FAFAFA !important;
            transition: background-color 5000s ease-in-out 0s;
        }
        textarea {
            resize: none;
            width: 100%;
            box-sizing: border-box
        }
        ::placeholder {
            color: #cbd5e0; 
            opacity: 1;
        }
        ::-webkit-input-placeholder {
            color: #cbd5e0;
        }
        .ccontacts {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            /* border: 1px solid green; */

        }
        .ccontacts-detail {
            width: 100%;
            text-align: left;
            /* border: 1px solid pink; */
        }
        .ccontacts-detail p {
            margin-bottom: 5px;
        }
        .ccontacts-detail .cc-1 {
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #cbd5e0;
        }
        .ccontacts-detail .cc-2 {
            color: #FAFAFA;
            font-size: 14px;
        }
        .contact-us .fullname {
            display: flex;
            gap: 10px
        }
        .ccontacts-socmed {
            margin-top: 80px;
        }

        

        /* Career page */
        .hero-career{
            background: linear-gradient(0deg, #05051F 0%, rgba(5, 5, 31, 0.40) 65.67%, rgba(255, 255, 255, 0.20) 100%), url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') lightgray -0.092px -567.375px / 100% 179.964% no-repeat;
            background-size: 100% 160%;
            background-position:bottom;
            /* height: 70vh; */
        }
        .position {
            background: #f0f4f8;
        }
        .position-section {
            justify-items: left;
            text-align: left;
        }
        .position-tab {
            border-bottom: 1px solid #cbd5e0;
            padding: 0 0 16px;;
        }
        .position-content {
            display: block;
        }
        .position-details {
            flex: 2;
            /* margin-top: 16px; */
            padding: 10px 0;
        }
        .position-content .tabcontent {
            border-bottom: 1px solid #cbd5e0;
        }
        .position-details h3{
            margin: 0 0 8px;
        }

        .apply-position {
            flex: 1;
            text-align: right;
            align-content: center;
        }
        .apply-position button {
            color: #7F7F7F  ;
            outline: none;
            border: none;
            background-color: transparent;
            font-size: 16px;
            cursor: pointer;
        }
        .apply-position button:hover,
        .apply-position button:focus {
            color: #007CE7;
            transition: all 0.3s ease;
            
        }
        .position .hq, .position .branch {
            display: flex;
            padding: 16px 0 0;
        }

        .position-tab .tablinks {
            padding: 5px 16px;
            background: rgb(5, 5, 31, 0.10);
            border: 1px solid rgba(104, 104, 104, 0.5);
            color: #05051f;
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            font-size: 14px;
            margin: 0 8px 8px 0;
            outline: none;
        }

        .position-tab .tablinks:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .position-tab .tablinks.active {
            background: #05051f;;
            color: #FAFAFA;
        }
        .apply-modal {
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0); /* transparent initially */
            visibility: hidden;               /* hidden by default */
            opacity: 0;
            transition: visibility 0s linear 0.3s, opacity 0.3s ease, background-color 0.3s ease;
            pointer-events: none;
        }
        .apply-modal.show {
            visibility: visible;
            opacity: 1;
            background-color: rgba(0,0,0,0.4); /* semi-transparent backdrop */
            transition: visibility 0s linear 0s, opacity 0.3s ease, background-color 0.3s ease;
            pointer-events: auto;
        }
        .apply-modal.show .apply-modal-content {
            transform: scale(1);
            opacity: 1;
        }
        .apply-modal-content {
            background-color: #fefefe;
            margin: 15% auto;
            width: 80%;
            max-width: 1000px;
            border-radius: 8px;
            transform: scale(0.7);
            opacity: 0;
            transition: all 0.3s ease;
            font-size: 14px;
            /* padding: 26px 20px; */
        }
        .modal-content-details {
            display: flex;
            padding: 10px 20px 20px;
        }
        .apply-qualification {
            color: #333;
            padding: 20px;
            flex: 1;
        }
        .apply-qualification div {
            margin-bottom: 16px;
        }
        .apply-qualification span {
            font-weight: 600;
            color: #444;
        }
        .apply-qualification p {
            margin: 0 0 4px;
        }
        .apply-qualification li{
            margin: 0 40px 0;
        }
        .apply-qualification h2 span {
            color: #333;
            font-weight: 700;
            margin: 0;
        }
        .apply-qualification h2 {
            margin: 0 0 10px;
        }
        .apply-qualification h3 {
            margin: 0 0 5px;
            color: #333;
        }
        .apply-form {
            flex: 1;
            padding: 20px;
        }
        .apply-form .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 16px;
        }
        .apply-form label {
            color: #444;
            display: block;
            margin-bottom: 0.3rem;
        }
        .apply-form input[type="text"],
        .apply-form input[type="email"],
        .apply-form input[type="tel"],
        .apply-form input[type="file"],
        .apply-form textarea {
            width: 100%;
            padding: 5px 10px;
            border: 1px solid #ccc;
            border-radius: 2px;
            font-size: 14px;
        }
        .apply-form textarea {
            resize: vertical;
            min-height: 40px;
        }
        .apply-form form label span {
            color: red;
        }
        .drop-zone {
            border: 2px dashed #aaa;
            border-radius: 4px;
            padding: 16px;
            text-align: center;
            background: #fafafa;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s;
        }

        .drop-zone.dragover {
            background: #e3f2fd;
            border-color: #007CE7;
        }

        .drop-zone p {
            margin: 0 0 0.5rem;
            color: #666;
        }
        .drop-zone span {
            color: #007CE7;
        }

        .file-info {
            font-size: 0.9rem;
            color: #007CE7;
            margin-top: 0.5rem;
            word-break: break-word;
        }

        .hidden-input {
            display: none;
        }

        .application-btn {
            background: #007CE7;
            color: white;
            border: none;
            padding: 8px;
            font-size: 14px;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 1.5rem;
            width: 100%;
        }

        .application-btn:hover {
            background: #05051F;
        }

        @media (max-width: 500px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
            .full-width {
                grid-column: span 1;
            }
        }
        .full-width {
            grid-column: span 2;
        }
        .modal-header {
            background: linear-gradient(0deg, #05051F 0%, rgba(5, 5, 31, 0.40) 65.67%, rgba(255, 255, 255, 0.20) 100%), url("../images/lyrbldg.jpg") lightgray -0.092px -567.375px / 100% 179.964% no-repeat;
            background-size: 100% 160%;
            background-position:top;
            height: 200px;
            justify-content: right;
            border-radius: 8px 8px 0 0;
            ;
        }
        .apply-logo img{
            width: 70px;
            height: auto;
            background-color: #FAFAFA;
            padding: 10px;
            border-radius: 4px;
        }
        .apply-qualification .apply-logo {
            margin: -60px 0 0 15px;
        }
        .apply-close {
            color: #333;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            top: 1;
            margin-right: 20px;
        }

        .apply-close:hover,
        .apply-close:focus {
            color: black;
            text-decoration: none;
        }
